All Questions
2 questions
6votes
4answers
35kviews
A DTO class having an ArrayList of its own type - is this considered a good design?
I came across a DTO class like the below one. class PersonDTO { private String firstName; private String middleName; private String lastName; private String dob; // some 50 fields ...
0votes
1answer
695views
What are the key areas to evaluate software (codebase) on? [closed]
I have been asked to do a code review of about 50 applications over a period of 6 weeks. (Management has changed and the new CTO asked for an full internal software audit) I am wondering, what are ...